What it is
Superfact is a remote MCP server that turns your agent's output into a beautiful, shareable public page. From inside any MCP-capable client, call superfact.publish with structured JSON and a template, and get a clean public URL back in seconds. No model sits in the publish path: JSON in, templated HTML out, so the render is fast and deterministic.
Why
Engineers ship a pull request. Everyone else working with LLMs has no equivalent shareable artifact, so they copy-paste into a doc and lose the formatting. Superfact is that missing artifact.
Tools
publishcreate a new public artifactupdate_publishreplace the content of an existing artifactget_publishfetch current state for cold-start editslist_templateslist the available templatesget_template_schemafetch the JSON schema for a template
Templates
Exec Summary, Research Brief, Agent Progress Log, and Trip Plan. More on the way.
Connect
It is a hosted, remote server with OAuth, so there is nothing to install or run locally. Add the remote URL in your client:
https://superfact.ai/api/mcp
Or grab a token from the dashboard at https://superfact.ai
Notes
- Artifacts stay editable and are public-by-default, but never SEO-indexed.
- Vendor-neutral and MCP-native, so it works with any MCP-capable client.
- Free during preview.
Server Config
{
"mcpServers": {
"superfact": {
"url": "https://superfact.ai/api/mcp"
}
}
}